home *** CD-ROM | disk | FTP | other *** search
/ PhotoSpin 7: Medical Elements / PhotoSpin 7: Medical Elements - Disc 1.iso / pc / Kick Me / Japanese / ar32j30a.exe / 1033 / FILE / ARCHIVE.Z / ACROBAT / PLUG_INS / AFSTRING.JS < prev    next >
Text File  |  1997-10-31  |  2KB  |  68 lines

  1. /*
  2.     ==========================================================================
  3.     Module: AFString.js
  4.     ==========================================================================
  5.     JavaScript langauge dependent strings.
  6.     ==========================================================================
  7.     The Software, including this file, is subject ot the End User License
  8.     Agreement.
  9.     Copyright (c) 1997, Adobe Systems Incorporated, All Rights Reserved.
  10.     ==========================================================================
  11. */
  12.  
  13. /* ==== Strings ==== */
  14. /* All of our user strings are defined here. Use Shift-JIS encoding for
  15. ** double byte platforms. These strings need to be translated for each language. */
  16. IDS_LANGUAGE     = "JPN";
  17. IDS_GREATER_THAN    = "û│î°é╚ÆlüF%s ê╚Åπé╠Ælé≡ôⁿù═é╡é─é¡é╛é│éóüB";
  18. IDS_GT_AND_LT    = "û│î°é╚ÆlüF%sü`%s é╠ö═ê═é┼Ælé≡ôⁿù═é╡é─é¡é╛é│éóüB";
  19. IDS_LESS_THAN    = "û│î°é╚ÆlüF%s ê╚ë║é╠Ælé≡ôⁿù═é╡é─é¡é╛é│éóüB";
  20. IDS_INVALID_MONTH    = "û│î°é╚îÄ";
  21.  
  22. IDS_AM = "am";
  23. IDS_PM = "pm";
  24.  
  25. /* This string contains month info in the following format:
  26. ** month name or abbreviation (left bracket) month number (right bracket)
  27. ** Note that the first string with the given number will be returned by
  28. ** AFGetMonthString (look in AForm.js)
  29. ** Also note that the months and abbreviations should be in order of most
  30. ** to least definitive in case an abbreviation matches part of another
  31. ** month or abbreviation */
  32. IDS_MONTH_INFO    =    "January[1]" +
  33.                     "February[2]" +
  34.                     "March[3]" +
  35.                     "April[4]" +
  36.                     "May[5]" +
  37.                     "June[6]" +
  38.                     "July[7]" +
  39.                     "August[8]" +
  40.                     "September[9]" +
  41.                     "October[10]" +
  42.                     "November[11]" +
  43.                     "December[12]" +
  44.                     "Sept[9]" +
  45.                     "Jan[1]" +
  46.                     "Feb[2]" +
  47.                     "Mar[3]" +
  48.                     "Apr[4]" +
  49.                     "Jun[6]" +
  50.                     "Jul[7]" +
  51.                     "Aug[8]" +
  52.                     "Sep[9]" +
  53.                     "Oct[10]" +
  54.                     "Nov[11]" +
  55.                     "Dec[12]" +
  56.                     "1îÄ[1]" +
  57.                     "2îÄ[2]" +
  58.                     "3îÄ[3]" +
  59.                     "4îÄ[4]" +
  60.                     "5îÄ[5]" +
  61.                     "6îÄ[6]" +
  62.                     "7îÄ[7]" +
  63.                     "8îÄ[8]" +
  64.                     "9îÄ[9]" +
  65.                     "10îÄ[10]" +
  66.                     "11îÄ[11]" +
  67.                     "12îÄ[12]";
  68.